home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000128_news@columbia.edu_Thu Apr 13 23:11:36 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13744
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 13 Apr 1995 19:11:40 -0400
  3. Received: by apakabar.cc.columbia.edu id AA16340
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 13 Apr 1995 19:11:39 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: too slow!
  9. Date: 13 Apr 1995 23:11:36 GMT
  10. Organization: Columbia University
  11. Lines: 42
  12. Message-Id: <3mkb38$fui@apakabar.cc.columbia.edu>
  13. References: <3ma7sh$h83@news.csus.edu> <1995Apr13.114834.7576@ais.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <1995Apr13.114834.7576@ais.com>,  <bruce@ais.com> wrote:
  18. : My guess is that either you haven't increased the parameters on _both_
  19. : the client and the server (most Kermit implementations need to have
  20. : these parameters increased on both sides ...
  21. Strictly speaking, not totally accurate.  But practically speaking,
  22. good advice -- since it's easier to remember this way.  However, the
  23. curious are referred to Table 8-1 on page 168 of "Using C-Kermit" for
  24. a quick summary of parameters and whose take precedence.
  25.  
  26. : For sites where I do a lot of transfers, I prefer to put my usual
  27. : settings in the appropriate .INI file, which saves a certain amount
  28. : of typing on startup.  For example, one CKERMIT.INI file I use for
  29. : C-Kermit on several VMS systems that I regularly transfer files
  30. : between is:
  31. :     set block 3
  32. :     set send packet 1000
  33. :     set receive packet 1000
  34. :     set window 2
  35. :     set terminal byte 8       <-- Does not affect file transfer
  36. :     set comm byte 8           <-- Ditto
  37. :     set file type label
  38. : Note that to be effective this has to be used on both sides!!  Also
  39. : note that it won't work for transferring files to/from PC's or Unix
  40. : boxes unless you remove the `set file type label' line...
  41. You can generally use IF and built-in variables to construct scripts
  42. that are portable among the various C-Kermit implementations and also
  43. MS-DOS Kermit.  In this case, for example:
  44.  
  45.   if equal "\v(system)" "VMS" set file type labeled
  46.  
  47. : 8-bit transfers in particular may fail on some machines that use
  48. : only 7-bit ASCII...
  49. But in cases where even, odd, or mark parity is being used, modern
  50. Kermit programs will detect it and switch to 8th-bit prefixing
  51. automatically.
  52.  
  53. - Frank